home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / ANSWERS / CH02_4.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  351b  |  15 lines

  1. main()
  2. {
  3. int index;
  4.  
  5.    index = 13;
  6.    printf("The value of the index is %d\n", index);
  7.    index = 27;
  8.    printf("The value of the index is %d\n", index);
  9.    index = 10;
  10.    printf("The value of the index is %d\n", index);
  11.    
  12.    printf("Index is %d\n it still is %d\n it is %d",
  13.                                   index, index, index);
  14. }
  15.